Follow the same convention for private headers as newer parts of GTK.
#include "gtkdebug.h"
#include "gtkiconcacheprivate.h"
-#include "gtkiconcachevalidator.h"
+#include "gtkiconcachevalidatorprivate.h"
#include <glib/gstdio.h>
#include <gdk-pixbuf/gdk-pixdata.h>
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#include "config.h"
-#include "gtkiconcachevalidator.h"
+#include "gtkiconcachevalidatorprivate.h"
#include <glib.h>
#include <gdk-pixbuf/gdk-pixdata.h>
}
/**
- * _gtk_icon_cache_validate:
+ * gtk_icon_cache_validate:
* @info: a CacheInfo structure
*
* Validates the icon cache passed in the @cache and
* Returns: %TRUE if the cache is valid
*/
gboolean
-_gtk_icon_cache_validate (CacheInfo *info)
+gtk_icon_cache_validate (CacheInfo *info)
{
guint32 hash_offset;
guint32 directory_list_offset;
+++ /dev/null
-/* gtkiconcachevalidator.4
- * Copyright (C) 2007 Red Hat, Inc
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library. If not, see <http://www.gnu.org/licenses/>.
- */
-#ifndef __GTK_ICON_CACHE_VALIDATOR_H__
-#define __GTK_ICON_CACHE_VALIDATOR_H__
-
-
-#include <glib.h>
-
-G_BEGIN_DECLS
-
-enum {
- CHECK_OFFSETS = 1,
- CHECK_STRINGS = 2,
- CHECK_PIXBUFS = 4
-};
-
-typedef struct {
- const gchar *cache;
- gsize cache_size;
- guint32 n_directories;
- gint flags;
-} CacheInfo;
-
-gboolean _gtk_icon_cache_validate (CacheInfo *info);
-
-G_END_DECLS
-
-#endif /* __GTK_ICON_CACHE_VALIDATOR_H__ */
--- /dev/null
+/* gtkiconcachevalidator.4
+ * Copyright (C) 2007 Red Hat, Inc
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
+ */
+#ifndef __GTK_ICON_CACHE_VALIDATOR_PRIVATE_H__
+#define __GTK_ICON_CACHE_VALIDATOR_PRIVATE_H__
+
+#include <glib.h>
+
+G_BEGIN_DECLS
+
+enum {
+ CHECK_OFFSETS = 1,
+ CHECK_STRINGS = 2,
+ CHECK_PIXBUFS = 4
+};
+
+typedef struct {
+ const gchar *cache;
+ gsize cache_size;
+ guint32 n_directories;
+ gint flags;
+} CacheInfo;
+
+gboolean gtk_icon_cache_validate (CacheInfo *info);
+
+G_END_DECLS
+
+#endif /* __GTK_ICON_CACHE_VALIDATOR_PRIVATE_H__ */
gtk_tools = [
['gtk4-query-settings', ['gtk-query-settings.c']],
['gtk4-builder-tool', ['gtk-builder-tool.c']],
- ['gtk4-update-icon-cache', ['updateiconcache.c']],
+ ['gtk4-update-icon-cache', ['updateiconcache.c', 'gtkiconcachevalidator.c']],
['gtk4-encode-symbolic-svg', ['encodesymbolic.c', 'gdkpixbufutils.c']],
['gtk4-query-immodules', ['queryimmodules.c', 'gtkutils.c']],
]
#include <glib/gstdio.h>
#include <gdk-pixbuf/gdk-pixdata.h>
#include <glib/gi18n.h>
-#include "gtkiconcachevalidator.h"
+#include "gtkiconcachevalidatorprivate.h"
static gboolean force_update = FALSE;
static gboolean ignore_theme_index = FALSE;
static gboolean validate = FALSE;
static gchar *var_name = (gchar *) "-";
-/* Quite ugly - if we just add the c file to the
- * list of sources in Makefile.am, libtool complains.
- */
-#include "gtkiconcachevalidator.c"
-
#define CACHE_NAME "icon-theme.cache"
#define HAS_SUFFIX_XPM (1 << 0)
info.n_directories = 0;
info.flags = CHECK_OFFSETS|CHECK_STRINGS|CHECK_PIXBUFS;
- if (!_gtk_icon_cache_validate (&info))
+ if (!gtk_icon_cache_validate (&info))
{
g_mapped_file_unref (map);
return FALSE;